home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2000 #1 / Amiga Plus CD - 2000 - No. 1.iso / Tools / Grafik / Conv / AHC / Install AHC < prev   
Encoding:
Text File  |  1999-12-03  |  1.2 KB  |  60 lines

  1. ;---------------------------------------------------------------
  2. ;
  3. ; Installer script for AHC
  4. ; $VER: 37.1 (05.24.98)
  5. ; Written by Fredrik Westermarck
  6. ; E-Mail: bigbeard@mds.mdh.se
  7. ;
  8. ;---------------------------------------------------------------
  9. ;  
  10. (complete 0)
  11. (set ProgVer 1.0)
  12. (set ProgName "AHC")
  13.  
  14. ;---------------------------------------------------------------
  15. ; Install program!
  16. ;---------------------------------------------------------------
  17.  
  18. (
  19.     (set ProgDir
  20.         (askdir
  21.             (prompt "Where do you want to install AHC?\n(No additional drawer will be created)")
  22.             (disk)
  23.             (default "Work:")
  24.             (help "Select the drawer where you want to install AHC.\n\nNOTE: No additional drawer will be created")
  25.         )
  26.     )
  27. )
  28. (complete 25)
  29. (
  30.     (copyfiles (prompt "Installing AHC files")
  31.         (help @copyfiles-help)
  32.         (source "AHC")
  33.         (newname ProgName)
  34.         (dest ProgDir)
  35.         (infos)
  36.     )
  37. )
  38. (complete 40)
  39. (
  40.     (copyfiles (prompt "Installing GUI files")
  41.         (help @copyfiles-help)
  42.         (source "ahc.wizard")
  43.         (newname "ahc.wizard")
  44.         (dest ProgDir)
  45.     )
  46. )
  47. (complete 60)
  48. (
  49.     (copylib
  50.         (prompt "Installing wizard.library into LIBS:")
  51.         (help @copylib-help)
  52.         (confirm)
  53.         (source "libs/wizard.library")
  54.         (dest "LIBS:")
  55.         (newname "wizard.library")
  56.     )
  57.         
  58. )
  59. (complete 100)
  60. (set default-dest ProgDir)